home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
kbd.postinst
< prev
next >
Wrap
Text File
|
2008-09-25
|
583b
|
25 lines
#! /bin/sh -e
# Move the init script symlink
if [ -L /etc/rcS.d/S48console-screen.kbd.sh ]; then
update-rc.d -f console-screen.kbd.sh remove
fi
if type update-initramfs >/dev/null 2>&1; then
update-initramfs -u
fi
# Automatically added by dh_installinit
if [ -x "/etc/init.d/console-screen.kbd.sh" ]; then
update-rc.d console-screen.kbd.sh start 90 S . >/dev/null
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d console-screen.kbd.sh start || exit $?
else
/etc/init.d/console-screen.kbd.sh start || exit $?
fi
fi
# End automatically added section
exit 0